Miscellaneous string fixes
authorPhilip Withnall <philip@tecnocode.co.uk>
Sun, 22 Aug 2010 14:06:45 +0000 (15:06 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Sun, 22 Aug 2010 14:06:45 +0000 (15:06 +0100)
Mostly capitalisation fixes. Closes: bgo#528257

gdk/gdk.c
gtk/gtkbuilderparser.c
gtk/gtkmountoperation-stub.c
gtk/gtkmountoperation-x11.c
gtk/gtkmountoperation.c
gtk/gtktextbufferserialize.c
modules/printbackends/cups/gtkprintbackendcups.c

index 5b58d1fd0a29e593d179f3fee72de466edd79466..6f494e8b0c3b42aeb85331f1fee91f65508c302c 100644 (file)
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -159,10 +159,10 @@ static const GOptionEntry gdk_args[] = {
     /* Placeholder in --screen=SCREEN in --help output */      N_("SCREEN") },
 #ifdef G_ENABLE_DEBUG
   { "gdk-debug",    0, 0, G_OPTION_ARG_CALLBACK, gdk_arg_debug_cb,  
-    /* Description of --gdk-debug=FLAGS in --help output */    N_("Gdk debugging flags to set"),
+    /* Description of --gdk-debug=FLAGS in --help output */    N_("GDK debugging flags to set"),
     /* Placeholder in --gdk-debug=FLAGS in --help output */    N_("FLAGS") },
   { "gdk-no-debug", 0, 0, G_OPTION_ARG_CALLBACK, gdk_arg_no_debug_cb, 
-    /* Description of --gdk-no-debug=FLAGS in --help output */ N_("Gdk debugging flags to unset"), 
+    /* Description of --gdk-no-debug=FLAGS in --help output */ N_("GDK debugging flags to unset"),
     /* Placeholder in --gdk-no-debug=FLAGS in --help output */ N_("FLAGS") },
 #endif 
   { NULL }
index ef2e5e9e091e20319eca001a68e56fa505b2371c..a3954d1ae562788bee745d73095634f7d6cb7399 100644 (file)
@@ -404,7 +404,7 @@ parse_object (GMarkupParseContext  *context,
     {
       g_set_error (error, GTK_BUILDER_ERROR,
                    GTK_BUILDER_ERROR_DUPLICATE_ID,
-                   _("Duplicate object id '%s' on line %d (previously on line %d)"),
+                   _("Duplicate object ID '%s' on line %d (previously on line %d)"),
                    object_id, line, line2);
       return;
     }
index c7b8d1a9ed94071b7cca9a26ee6e0a2355065c06..27b09ae7f9b26704a27690a28d3c714cc18b848c 100644 (file)
@@ -61,7 +61,7 @@ _gtk_mount_operation_kill_process (GPid      pid,
   g_set_error (error,
                G_IO_ERROR,
                G_IO_ERROR_NOT_SUPPORTED,
-               _("Cannot kill process with pid %d. Operation is not implemented."),
+               _("Cannot kill process with PID %d. Operation is not implemented."),
                pid);
   return FALSE;
 }
index 3ba793080862f30a7a60916b3fa22a8ab655d282..af0c291bd30dcbad8944152cc6b67328e7957e4c 100644 (file)
@@ -960,7 +960,7 @@ _gtk_mount_operation_kill_process (GPid      pid,
       g_set_error (error,
                    G_IO_ERROR,
                    g_io_error_from_errno (errsv),
-                   _("Cannot end process with pid %d: %s"),
+                   _("Cannot end process with PID %d: %s"),
                    pid,
                    g_strerror (errsv));
     }
index e30d13c7b00cb0a85e30a5f6b3d0e85b5d3ed01e..c2489ce59dc30a4dce8ef0e5aaa92962b8e6cee4 100644 (file)
@@ -881,7 +881,7 @@ add_pid_to_process_list_store (GtkMountOperation              *mount_operation,
                                     &pixbuf);
 
   if (name == NULL)
-    name = g_strdup_printf (_("Unknown Application (pid %d)"), pid);
+    name = g_strdup_printf (_("Unknown Application (PID %d)"), pid);
 
   if (command_line == NULL)
     command_line = g_strdup ("");
index 76040f25c34c35ddbb97a64d44d295af7a616484..04f684bd4f938c51168619b8725be253c74332ac 100644 (file)
@@ -842,7 +842,7 @@ check_id_or_name (GMarkupParseContext  *context,
            {
              set_error (error, context,
                         G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
-                        _("<%s> element has invalid id \"%s\""), attribute_values[i]);
+                        _("<%s> element has invalid ID \"%s\""), attribute_values[i]);
              return FALSE;
            }
        }
index 67d2d47dec841aa0554fbe1acc930a2a6dbeeab8..d23ed708959ee61a7cb509d8df2293bc610a5140 100644 (file)
@@ -1683,7 +1683,7 @@ cups_request_printer_list_cb (GtkPrintBackendCups *cups_backend,
           N_("The door is open on printer '%s'."),
           N_("Printer '%s' is low on paper."),
           N_("Printer '%s' is out of paper."),
-          N_("Printer '%s' is currently off-line."),
+          N_("Printer '%s' is currently offline."),
           N_("There is a problem on printer '%s'.")
         };
       gboolean is_paused = FALSE;